46bd831271222c3a9ae5c51a77e1ad693f1cc3e9,sonar-application/src/main/java/org/sonar/application/App.java,App,main,#String[]#,146
Before Change
new MinimumViableSystem().check();
CommandLineParser cli = new CommandLineParser();
Properties rawProperties = cli.parseArguments(args);
Props props = new PropsBuilder(rawProperties, new JdbcSettings()).build();
new ProcessLogging().configure(props, "/org/sonar/application/logback.xml");
App app = new App();
// start and wait for shutdown command
After Change
Props props = null;
try {
props = new PropsBuilder(rawProperties, new JdbcSettings()).build();
new ProcessLogging().configure(props, "/org/sonar/application/logback.xml");
} catch (IOException e) {
throw new IllegalStateException(e.getMessage());
} catch (URISyntaxException e) {